page.tsx 339 B

1234567891011121314
  1. import React from "react";
  2. import { WorkoutStepper } from "@/features/workout-builder";
  3. export default async function HomePage() {
  4. // const user = await serverAuth();
  5. // const t = await getI18n();
  6. return (
  7. <div className="bg-background text-foreground relative flex h-fit flex-col">
  8. <WorkoutStepper />
  9. </div>
  10. );
  11. }